Page.LineJoinType Property (console safe)
Sets or gets the line join type.
Remarks
Line join type can be any of the following:



Example code for drawing one of those would be:
myPage.StrokeColor = &c000000
myPage.LineWidth = 1515.0
myPage.LineJoinType = Page.LineJoinTypeEnum.ROUND
myPage.MoveTo(30,90)
myPage.LineTo(70, 140)
myPage.LineTo(130, 90)
myPage.Draw()
See Also
Page Class